html{
    scroll-behavior: smooth;
    overflow-y: hidden;
}

*{
    background-color: black;
    color: white;
    font-family: "Montserrat", sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loadingbar{
    width: 200px;
    height: 20px;
    border: 2px solid white;
    border-radius: 10px;
    background: linear-gradient(black 0 0) 0/0% no-repeat white;
    animation: loadingbar_animation 3s linear forwards;
}

@keyframes loadingbar_animation {
    100% {background-size: 100%}
}